home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / pbmplus / pbm / pbmtoicon.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  2.8 KB  |  134 lines

  1. /* pbmtoicon.c - read a portable bitmap and produce a Sun icon file
  2. **
  3. ** Copyright (C) 1988 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include "pbm.h"
  14.  
  15. static void putinit ARGS(( void ));
  16. static void putbit ARGS(( bit b ));
  17. static void putrest ARGS(( void ));
  18. static void putitem ARGS(( void ));
  19.  
  20. void
  21. main( argc, argv )
  22.     int argc;
  23.     char* argv[];
  24.     {
  25.     FILE* ifp;
  26.     bit* bitrow;
  27.     register bit* bP;
  28.     int rows, cols, format, pad, padleft, padright, row, col;
  29.  
  30.     pbm_init( &argc, argv );
  31.  
  32.     if ( argc > 2 )
  33.     pm_usage( "[pbmfile]" );
  34.  
  35.     if ( argc == 2 )
  36.     ifp = pm_openr( argv[1] );
  37.     else
  38.     ifp = stdin;
  39.  
  40.     pbm_readpbminit( ifp, &cols, &rows, &format );
  41.     bitrow = pbm_allocrow( cols );
  42.     
  43.     /* Round cols up to the nearest multiple of 16. */
  44.     pad = ( ( cols + 15 ) / 16 ) * 16 - cols;
  45.     padleft = pad / 2;
  46.     padright = pad - padleft;
  47.  
  48.     printf( "/* Format_version=1, Width=%d, Height=%d", cols + pad, rows );
  49.     printf( ", Depth=1, Valid_bits_per_item=16\n */\n" );
  50.  
  51.     putinit( );
  52.     for ( row = 0; row < rows; ++row )
  53.     {
  54.     pbm_readpbmrow( ifp, bitrow, cols, format );
  55.     for ( col = 0; col < padleft; ++col )
  56.         putbit( 0 );
  57.         for ( col = 0, bP = bitrow; col < cols; ++col, ++bP )
  58.         putbit( *bP );
  59.     for ( col = 0; col < padright; ++col )
  60.         putbit( 0 );
  61.         }
  62.  
  63.     pm_close( ifp );
  64.  
  65.     putrest( );
  66.  
  67.     exit( 0 );
  68.     }
  69.  
  70. static int item, bitsperitem, bitshift, itemsperline, firstitem;
  71.  
  72. static void
  73. putinit( )
  74.     {
  75.     itemsperline = 0;
  76.     bitsperitem = 0;
  77.     item = 0;
  78.     bitshift = 15;
  79.     firstitem = 1;
  80.     }
  81.  
  82. #if __STDC__
  83. static void
  84. putbit( bit b )
  85. #else /*__STDC__*/
  86. static void
  87. putbit( b )
  88. bit b;
  89. #endif /*__STDC__*/
  90.     {
  91.     if ( bitsperitem == 16 )
  92.     putitem( );
  93.     ++bitsperitem;
  94.     if ( b == PBM_BLACK )
  95.     item += 1 << bitshift;
  96.     --bitshift;
  97.     }
  98.  
  99. static void
  100. putrest( )
  101.     {
  102.     if ( bitsperitem > 0 )
  103.     putitem( );
  104.     putchar( '\n' );
  105.     }
  106.  
  107. static void
  108. putitem( )
  109.     {
  110.     char* hexits = "0123456789abcdef";
  111.  
  112.     if ( firstitem )
  113.     firstitem = 0;
  114.     else
  115.     putchar( ',' );
  116.     if ( itemsperline == 8 )
  117.     {
  118.     putchar( '\n' );
  119.     itemsperline = 0;
  120.     }
  121.     if ( itemsperline == 0 )
  122.     putchar( '\t' );
  123.     putchar( '0' );
  124.     putchar( 'x' );
  125.     putchar( hexits[item >> 12] );
  126.     putchar( hexits[( item >> 8 ) & 15] );
  127.     putchar( hexits[( item >> 4 ) & 15] );
  128.     putchar( hexits[item & 15] );
  129.     ++itemsperline;
  130.     bitsperitem = 0;
  131.     item = 0;
  132.     bitshift = 15;
  133.     }
  134.